Meaning Augmented assignment operators
What does Augmented assignment operators mean? Below you find one meaning for the word Augmented assignment operators You can also add a definition of Augmented assignment operators yourself

1

0 Thumbs up   0 Thumbs down

Augmented assignment operators


The augmented assignment operators (+=, -=, /=, *=, etc) are 'shortcut' operators for a self-referential assignment. For example, these two statements are the same: a = a + 1 a += 1
Source: cims.nyu.edu (offline)




<< Accumulator variable Floating point number >>